home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / reader_requests / wild / support / wilf / firsttry / switchdemo.c < prev    next >
C/C++ Source or Header  |  2000-02-23  |  168b  |  22 lines

  1.  
  2. #define A 'a'
  3. #define B 'b'
  4.  
  5. int main()
  6. {
  7.  char c[4]="siso";
  8.  
  9.  switch (c[0])
  10.   {
  11.    case A:
  12.     {
  13.      int b,c;
  14.     }
  15.    case B:
  16.     {
  17.      int d,e;
  18.     }    
  19.   }
  20.  
  21. }
  22.